home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-06-18 | 1.1 KB | 58 lines | [TEXT/dosa] |
- // DesktopFrameItem.java : this is a Java source code file for the program Facade.
- // Copyright 1998, Andrew S. Downs
- // andrew.downs@tulane.edu
- //
- // This source code is distributed as freeware.
- // Just keep this author information in the file. Enjoy!
-
- import java.awt.*;
- import java.awt.event.*;
- import java.io.*;
- import java.util.*;
- import com.sun.java.swing.*;
-
- public class DesktopFrameItem extends JLabel /*DesktopComponent*/ implements Serializable {
- boolean select = false;
-
- String label;
- String path;
- String modDate;
-
- DesktopFrameItem() {
- super();
- }
-
- public String getPath() {
- return this.path;
- }
-
- public void setPath( String s ) {
- this.path = s;
- }
-
- public String getLabel() {
- return this.label;
- }
-
- public void setLabel( String s ) {
- this.label = s;
- }
-
- public String getModDate() {
- return this.modDate;
- }
-
- public void setModDate( String s ) {
- this.modDate = s;
- }
-
- public boolean getSelect() {
- return this.select;
- }
-
- public void setSelect( boolean b ) {
- this.select = b;
- }
- }
-
-